home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue51
/
Clinic
/
DockEg.dpr
next >
Wrap
Text File
|
1999-09-02
|
271b
|
16 lines
program DockEg;
uses
Forms,
DockEgU in 'DockEgU.pas' {Form1},
DockEgU2 in 'DockEgU2.pas' {Form2};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TForm2, Form2);
Application.Run;
end.